/* ======= General style ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
html {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #272727;
    height: 100%;
    background: #e5c7ab;
}
:focus-visible {
  outline: 2px dashed #aa8453;
  outline-offset: 3px;
}
.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}
h3,
.h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #272727;
    margin-top: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
h3 a,
.h3 a {
    color: inherit
}
.h3 a:hover {
    text-decoration: none
}
p {
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: #272727;
}
a {
    color: #aa8453;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out
}
a:hover,
a:focus {
    color: #aa8453;
    outline: none
}
a:focus {
    text-decoration: none
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-120 {
    margin-bottom: 120px;
}
.div-logo h1 {
    font-family: 'Gilda Display', serif;
    font-size: 45px;
    font-weight: 400;
    display: block;
    width: 100%;
    position: relative;
    color: #aa8453;
    letter-spacing: 1px;
    margin-bottom: 60px;
}
.div-logo span {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    color: #272727;
    font-weight: 400;
    letter-spacing: 10px;
    display: block;
    margin-top: 0px;
    line-height: 1.5em;
    text-transform: uppercase;
}
.div-logo p {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #272727;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
}
/* star rating  */
.star-rating {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.4em;
    margin-right: 0.4em;
    margin-bottom: 1.4em;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid #e4a853;
    border-left: 0.3em solid transparent;
    font-size: 10px;
}
.star-rating:before,
.star-rating:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: 0.7em solid #e4a853;
    border-left: 1em solid transparent;
    transform: rotate(-35deg);
}
.star-rating:after {
    transform: rotate(35deg);
}


/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 999999;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 70px;
    height: 70px;
    left: 50%;
    top: auto;
    margin-left: -35px;
    margin-top: 1px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 1px solid #f4e8dd;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -1px;
    left: -1px;
    border: 1px solid transparent;
    border-top: 1px solid #aa8453;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ======= Selection style ======= */
::selection {
    background-color: #aa8453;
    color: rgba(255, 255, 255, 0.8)
}
-webkit-::selection {
    background-color: #aa8453;
    color: rgba(255, 255, 255, 0.8)
}
::-moz-selection {
    background-color: #aa8453;
    color: rgba(255, 255, 255, 0.8)
}

/* ======= Button style ======= */
.btn {
    font-family: 'Barlow Condensed', sans-serif;
    position: relative;
    display: inline-block;
    padding: 10px 24px;
    line-height: 1.5em;
    color: #fff;
    background: transparent;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    -webkit-transition: all .3s ease-out !important;
    transition: all .3s ease-out !important;
    font-size: 15px;
    letter-spacing: 3px;
    box-sizing: border-box;
}
.btn:hover,
.btn:focus {
    color: #fff;
    background: #272727;
    border: 1px solid #272727;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none !important
}

/* ======= Content style ======= */
body.layout {
    background: #e5c7ab url("../img/bg.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow-x: hidden;
}
.main {
    padding: 60px 0 30px 0;
    text-align: center
}
.description {
    margin-top: 3.6em
}
.duru h2,
.duru .h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #272727;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    border: 1px solid #d4b08e;
    display: inline-grid;
    padding: 12px 24px;
    border-radius: 30px;
}
.duru h2 a,
.duru .h2 a {
    color: inherit
}
.duru .h2 a:hover {
    text-decoration: none
}
.duru-version {
    margin: 0 0 30px 0;
}
.duru-version h3 {
    margin-bottom: 15px;
    line-height: 1.5em;
    font-size: 15px;
    letter-spacing: 0px;
    font-family: 'Barlow', sans-serif;
    text-transform: none;
    margin-top: 15px;
}
.duru-version figure {
    position: relative
}
.duru-version figure img {
    display: block;
    border: 7px solid #e5c7ab;
}
.duru-version figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(170, 132, 83, 0.8);
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.duru-version figcaption .inner {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}
.duru-version figure:hover figcaption {
    opacity: 1;
}
@media(min-width:768px) {
    html {
        font-size: 85%
    }
}
@media(min-width:992px) {
    html {
        font-size: 92%
    }
}
@media(min-width:1200px) {
    html {
        font-size: 100%
    }
}

/* ======= Corner style ======= */
.hero-corner {
    top: 50px;
    right: 50px;
    z-index: 21;
    border-top: 1px solid;
    border-right: 1px solid;
}
.hero-corner2 {
    top: 50px;
    left: 50px;
    border-top: 1px solid;
    border-left: 1px solid;
}
.hero-corner3 {
    bottom: 50px;
    right: 50px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}
.hero-corner4 {
    bottom: 50px;
    left: 50px;
    border-bottom: 1px solid;
    border-left: 1px solid;
}
.hero-corner,
.hero-corner2,
.hero-corner3,
.hero-corner4 {
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: 21;
    border-color: #d4b08e;
}
@media screen and (max-width: 991px) {
    .hero-corner,
    .hero-corner2,
    .hero-corner3,
    .hero-corner4 {
        display: none;
    }
}

/* ======= Bottom style ======= */
.bottom {
    padding: 0 0 90px 0;
    text-align: center;
}
.bottom p {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #272727;
    text-align: center;
    font-weight: 400;
    margin: 0;
}
.bottom p a {
    color: #aa8453;
}

/* ======= New style ======= */
.duru-version .new-popular {
    background-color: #ff0000;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    display: block;
    position: absolute;
    top: 15px;
    right: 30px;
    text-transform: uppercase;
}
.duru-version .new-popular p {
    padding-top: 17px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.25em;
    margin-left: 1px;
}

/* ======= Trendy Block style ======= */
.trendy-block {
    top: 50vh;
    transform: translate(0, -50%);
    left: 19px;
    position: fixed;
    z-index: 25;
}
.trendy-block p {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    opacity: 1;
    color: #272727;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 7px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 15px;
}
@media screen and (max-width: 768px) {
    .trendy-block {
        display: none;
    }
}

/* ======= Bestseller Block style ======= */
.bestselling-block {
    top: 50vh;
    transform: translate(0, -50%);
    right: 62px;
    position: fixed;
    z-index: 25;
}
.bestselling-block p {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 20px;
    opacity: 1;
    color: #272727;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 7px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    font-size: 15px;
}
.bestselling-block p img {
    height: 20px;
    max-height: 20px;
    -webkit-transform: rotate(-270deg);
    transform: rotate(-270deg);
}
@media screen and (max-width: 768px) {
    .bestselling-block {
        display: none;
    }
}

/* Buy Double Button style */
.btn-double {
    position: relative;
    display: inline-block;
    margin: 10px 0;
}
.btn-double:before {
    content: attr(data-grouptype);
    color: #272727;
    display: block;
    font-size: 15px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #e4c7ad;
    position: absolute;
    left: 50%;
    top: 12px;
    margin-left: -30px;
    line-height: 30px;
}
.btn-double > a + a {
    margin-left: 0px;
}
.btn-double > a {
    display: inline-block;
    font-size: 15px;
    text-decoration: none;
    transition: color .3s ease;
}
.btn-double > a span {
    font-size: 15px;
    margin-right: 3px;
}
.btn-double > a:nth-of-type(1) {
    background: #2b2b2b;
    color: #FFF;
    border-radius: 30px 0 0 30px;
    padding: 15px 25px 15px 20px;
}
.btn-double > a:nth-of-type(1):hover {
    background: #fff;
    color: #1b1b1b;
}
.btn-double > a:nth-of-type(2) {
    background: #2b2b2b;
    color: #FFF;
    border-radius: 0 30px 30px 0;
    padding: 15px 20px 15px 25px;
}
.btn-double > a:nth-of-type(2):hover {
    background: #fff;
    color: #1b1b1b;
}
@media screen and (max-width: 768px) {
    .btn-double {
        display: none;
    }
}

